home *** CD-ROM | disk | FTP | other *** search
/ NetGuide 2004 March / NETGUIDN0403.iso / pc / featured / Windows / orgcdfull.exe / setup_su.exe / {app} / Templates / Thumbnail Table.dax < prev    next >
Encoding:
OrangeCD theme  |  2003-07-23  |  1.7 KB  |  56 lines

  1. /*
  2.     Thumbnail Table.dax
  3.     Copyright (c) Firetongue Software, 1997-2003
  4. */
  5.  
  6. SORTBY1["Sorting field 1"]                : field = artistsort;
  7. SORTBY2["Sorting field 2"]                : field = title;
  8. SORTBY3["Sorting field 3"]                : field = year;
  9. THUMBSIZE["Thumbnail size (pixels)"]    : int = 64;
  10.  
  11. BGCOLOR["Background color"]                : color = #FFFFFF;
  12. TEXTCOLOR["Normal text color"]            : color = #000000;
  13. LINKCOLOR["Link color"]                    : color = #0000FF;
  14. VLINKCOLOR["Visited link color"]        : color = #800080;
  15.  
  16. TEXTFONT["Normal font"]                    : font = "small Times New Roman";
  17. HEADERFONT["Header font"]                : font = "large Times New Roman";
  18.  
  19. ::start/web
  20.  
  21. <html>
  22. <head>
  23. <!--[CharSet/]-->
  24. <title>My music collection</title>
  25. <style><!--
  26. body,td,a { font: $TEXTFONT }
  27. h2 { font: $HEADERFONT }
  28. //--></style>
  29. </head>
  30. <body bgcolor=$BGCOLOR text=$TEXTCOLOR link=$LINKCOLOR vlink=$VLINKCOLOR>
  31. <h2>My music collection</h2>
  32. <table cellpadding=2 cellspacing=0 border=1 color=#808080><tbody>
  33. <tr>
  34. <td><b>Cover</b></td>
  35. <td><b>Artist</b></td>
  36. <td><b>Title</b></td>
  37. <td><b>Year</b></td>
  38. <td><b>Release kind</b></td>
  39. <td><b>Category</b></td>
  40. </tr>
  41. <!--[Album(all,$SORTBY1,$SORTBY2,$SORTBY3)]--><tr>
  42. <td><!--[Cover($THUMBSIZE)]--> <!--[/Cover]--></td>
  43. <td><!--[Artist]--> <!--[/Artist]--></td>
  44. <td><!--[Title]--> <!--[/Title]--></td>
  45. <td><!--[Year]--> <!--[/Year]--></td>
  46. <td><!--[AlbumKind]--> <!--[/AlbumKind]--></td>
  47. <td><!--[Category]--> <!--[/Category]--></td>
  48. </tr>
  49. <!--[/Album]-->
  50. </table>
  51. <hr>
  52. <!-- please support OrangeCD by keeping this link. Thank you! -->
  53. <i>Page generated by OrangeCD - <a href="http://www.firetongue.com"><i>ultimate CD cataloging software</i></a>.</i>
  54. </body>
  55. </html>
  56.